home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / appsrcs.zip / APPUN.ZIP / APPRUN.H < prev    next >
C/C++ Source or Header  |  1993-05-02  |  868b  |  33 lines

  1. /* apprun.h */
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <commdlg.h>
  5. #include <dlgs.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include <cderr.h>
  9.  
  10.  
  11. #define IDC_BUTTONS 100
  12. #define IDC_EDIT    200
  13. #define IDC_RADIO   300
  14.  
  15. char szBuffer[256];
  16.  
  17. extern HINSTANCE hInst;
  18.  
  19. /* defined in AppRun.c */
  20. extern    int  PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, int nCmdShow);
  21. extern    long WINAPI WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  22. extern    VOID UpdateRadioButtons(int iCurrentRB);
  23. extern FARPROC         lpfnOldEdit;
  24.  
  25. /* defined in AppBrows.h */
  26. extern BOOL PASCAL BrowseFile(HWND hWndCommDlgParent, char *FileName);
  27.  
  28. /* defined in AppTools.c*/
  29. extern VOID OkMsgBox(char *szCaption, char *szFormat, ...);
  30.  
  31. /* defined in appedit.c */
  32. long WINAPI EditProc(HWND, UINT, WPARAM, LPARAM);
  33.